From 80ce46c26d9bcb8a8cdd8e3f10f928dcae1353ad Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 21 Sep 2002 20:00:20 +0000 Subject: [PATCH] (custom-make-dependencies): Bind to t around evaluating the def-form. --- lisp/cus-dep.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index 19ae727b2dd..d7fd848a9ab 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el @@ -66,7 +66,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" (setq is-autoloaded t))) (let ((expr (read (current-buffer)))) (condition-case nil - (progn + (let ((custom-dont-initialize t)) (eval expr) (put (nth 1 expr) 'custom-autoloaded is-autoloaded) (put (nth 1 expr) 'custom-where name)) -- 2.30.2